home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / PickMeUp.sit / Pick Me Up / source code / Movie app source / pickmeUp97 / MyPP_DebugHeaders.pch++ < prev    next >
Text File  |  1997-05-12  |  1KB  |  32 lines

  1. // ===========================================================================
  2. //    PP_DebugHeaders.pch           ©1995-1997 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4. //
  5. //    Source for precompiled header for PowerPlant headers
  6. //
  7. //    This file #includes most header files for the PowerPlant library,
  8. //    as well as most of the Toolbox headers used by the PowerPlant library
  9. //    with all debugging symbols defined.
  10.  
  11.  
  12.     // This same file works for PowerPC, CFM68K, and 68K. We check the target
  13.     // at compile time and specify the appropriate output file name.
  14.     
  15. #if __POWERPC__
  16.     #pragma precompile_target "MyPP_DebugHeadersPPC"
  17.     
  18. #elif __CFM68K__
  19.     #pragma precompile_target "MyPP_DebugHeadersCFM68K"
  20.     
  21. #else
  22.     #pragma precompile_target "MyPP_DebugHeaders68K"
  23. #endif
  24.  
  25. #pragma once on
  26.  
  27. // new projects should use the new API, not the old stuff
  28. #define PP_Obsolete_Constants            0
  29. #define PP_Obsolete_Stream_Creators        0
  30. #define PP_Obsolete_Array_API            0
  31.  
  32. #include <PP_DebugHeaders.cp>